用 php curl 模拟 post 提交

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
$post_data = array(
'cclist=5AAAA',
'date=0',
'irname=',
'fullpath=',
);
$post_data = implode('&',$post_data);
$url='http://localhost/test.php';
$ch = curl_init();
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
$result=curl_exec($ch);
echo $result;
?>